home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1997 December / PC Pro December 1997 CD-Rom coverdisc.iso / symantec / dbAnywh / JAVA.BIN / CLASSES.ZIP / java / util / HashtableEntry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-14  |  630 b   |  18 lines

  1. package java.util;
  2.  
  3. class HashtableEntry {
  4.    int hash;
  5.    Object key;
  6.    Object value;
  7.    HashtableEntry next;
  8.  
  9.    protected Object clone() {
  10.       HashtableEntry var1 = new HashtableEntry();
  11.       var1.hash = this.hash;
  12.       var1.key = this.key;
  13.       var1.value = this.value;
  14.       var1.next = this.next != null ? (HashtableEntry)this.next.clone() : null;
  15.       return var1;
  16.    }
  17. }
  18.